home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Languages / Masm V6.11 / SAMPLES / NTSAMPLE / THREADS / THREADS.MA$ / THREADS.bin
Encoding:
Text File  |  1993-09-16  |  365 b   |  21 lines

  1.  
  2. # This is the make file for use with the Win32 SDK tools.
  3.  
  4. !include <ntwin32.mak>
  5.  
  6. threads.exe : threads.obj asmthred.obj
  7.     $(link) @<<
  8. $(ldebug)
  9. $(guilflags)
  10. $(guilibs)
  11. threads.obj
  12. asmthred.obj
  13. -out:$@
  14. <<
  15.  
  16. threads.obj : threads.c
  17.     $(cc) $(cdebug) $(cflags) $(cvars) threads.c
  18.  
  19. asmthred.obj : asmthred.asm
  20.     ml /c /Zi /coff asmthred.asm
  21.